home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / Developer University / DUProjects / Sample2 / Sources / Frame.h < prev    next >
Encoding:
Text File  |  1996-02-15  |  1.0 KB  |  38 lines  |  [TEXT/CWIE]

  1. //    Copyright © 1995 Apple Computer, Inc. All rights reserved.
  2. //    Release Version:    $ 1.0 d11 $
  3.  
  4. #ifndef FRAME_H
  5. #define FRAME_H
  6.  
  7. //=======================================================================
  8. // ----- Framework Includes -----
  9. #ifndef FWFRAME_H
  10. #include <FWFrame.h>        // FW_CFrame
  11. #endif
  12.  
  13. //=======================================================================
  14. class CSample2Part;
  15. class FW_CMenuEvent;
  16. class DevUniv_STalker;
  17.  
  18. //=======================================================================
  19. class CSample2Frame : public FW_CFrame {
  20. public:
  21.     FW_DECLARE_AUTO(CSample2Frame)
  22.                         CSample2Frame(Environment* ev, 
  23.                                     ODFrame* odFrame, 
  24.                                     FW_CPresentation* presentation, 
  25.                                     CSample2Part* sample2Part);
  26.     virtual             ~CSample2Frame();
  27. protected:
  28. // overrides
  29.     virtual void        Draw(Environment *ev, 
  30.                              ODFacet* odFacet, 
  31.                              ODShape* invalidShape);
  32. private:
  33.     DevUniv_STalker*    fSOMTalker;    // SOM object for speech synthesis
  34. };
  35.  
  36. //=======================================================================
  37. #endif
  38.